Patient List

  • A class to hold a list of patients, created from a query performed against a FHIRServer.

    The retrieve method must be called at least once so the list can start retrieving patients from the server. Use the onStatusUpdate and onPatientUpdate blocks to keep informed about status changes.

    You can use subscript syntax to safely retrieve a patient from the list: patientList[5]

    See more

    Declaration

    Swift

    open class PatientList
  • A patient list holding all available patients.

    See more

    Declaration

    Swift

    open class PatientListAll: PatientList
  • Undocumented

    See more
  • Patients are divided into sections, e.g. by first letter of their family name. This class holds patients belonging to one section.

    See more

    Declaration

    Swift

    open class PatientListSection
  • An enum to define how a list of patients should be ordered.

    See more

    Declaration

    Swift

    public enum PatientListOrder: String
  • A table view controller than can display a list of patients, dynamically fetching more patient batches as the user scrolls.

    See more

    Declaration

    Swift

    open class PatientListViewController: UITableViewController